NameValueCollection nvc = new NameValueCollection();
nvc = ConfigurationManager.GetSection("MyCompanyAppSettings") as NameValueCollection;

Response.Write(nvc["Key1"] + "<br />");
Response.Write(nvc["Key2"]);
